home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 10 / AACD 10.iso / AACD / Resources / Online / Term / Extras / Source / term-source.lha / Errors.h < prev    next >
C/C++ Source or Header  |  1996-10-20  |  436b  |  21 lines

  1. /*
  2. **    Errors.h
  3. **
  4. **    Error number definitions
  5. **
  6. **    Copyright © 1990-1996 by Olaf `Olsen' Barthel
  7. **        All Rights Reserved
  8. */
  9.  
  10. #ifndef _ERRORS_H
  11. #define _ERRORS_H 1
  12.  
  13. enum    {    ERR_SAVE_ERROR=42000,ERR_LOAD_ERROR,ERR_OUTDATED,
  14.         ERR_NO_PRINTER,ERR_NO_GFX_OUTPUT,ERR_BAD_DIMENSION,
  15.         ERR_EXECUTE_ERROR,ERR_ABORTED,
  16.         ERR_NOT_A_FILE,ERR_NOT_A_DRAWER,ERR_FILE_NOT_FOUND,
  17.         ERR_DRAWER_NOT_FOUND,ERR_PROGRAM_NOT_FOUND
  18.     };
  19.  
  20. #endif    /* _ERRORS_H */
  21.